home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / c-runtime / include / RCS / objcP.h,v < prev   
Encoding:
Text File  |  1992-04-13  |  1.5 KB  |  68 lines

  1. head    1.1;
  2. access;
  3. symbols;
  4. locks
  5.     dennisg:1.1; strict;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.1
  10. date    92.04.13.11.40.53;    author dennisg;    state Exp;
  11. branches;
  12. next    ;
  13.  
  14.  
  15. desc
  16. @Decelarations private to the run-time.
  17. @
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/* -*-c-*-
  26.  * This file contains declarations of variables and things private
  27.  *  to the run-time system.
  28.  *
  29.  * Copyright (C) 1991 Threaded Technologies Inc.
  30.  * 
  31.  * This program is free software; you can redistribute it and/or modify
  32.  * it under the terms of the GNU General Public License as published
  33.  * by the Free Software Foundation; either version 1, or any later version.
  34.  * 
  35.  * This program is distributed in the hope that it will be useful,
  36.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  37.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  38.  * General Public License for more details.
  39.  * 
  40.  * You should receive a copy of the GNU General Public License 
  41.  * along with this program; if not, write to the Free Software
  42.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  43.  * 
  44.   $Header: /usr/user/dennis_glatting/ObjC/c-runtime/include/RCS/ObjC-proto-private.h,v 0.11 1991/12/31 20:16:08 dennisg Exp dennisg $
  45.   $Author: dennisg $
  46.   $Date: 1991/12/31 20:16:08 $
  47.   $Log: ObjC-proto-private.h,v $
  48.  */
  49.  
  50.  
  51. #ifndef _objcp_INCLUDE_GNU
  52. #define _objcp_INCLUDE_GNU
  53.  
  54.  
  55. #include    <hash.h>
  56. #include  <objc.h>
  57.  
  58.  
  59.     /* Hash table used to hold module pointers. */
  60.     extern    Cache_t    moduleHash;
  61.     
  62.     /* Hash table used to hold classes. */
  63.     extern    Cache_t    classHash;
  64.  
  65. #endif
  66.  
  67. @
  68.